home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / GRAPHICS / GRAPHUTL / 2296.ZIP / PLSRC18.ZIP / PLSRC.DOC < prev    next >
Encoding:
Text File  |  1990-03-26  |  2.0 KB  |  70 lines

  1. PLSRC.DOC
  2. March 23, 1990
  3.  
  4. Piclab 1.81 is a public domain image processing program by Lee
  5. Daniel Crocker and the Stone Soup Group.  This achive contains the
  6. Microsoft C 5.1 source for Piclab 1.81 in the following files:
  7.  
  8.     TYPEDEFS    General-purpose definitions for portability.
  9.     PICLAB.H    Common header including structures and globals.
  10.  
  11.     VIDEO.ASM    Low-level routines such as video I/O.
  12.  
  13.     PLMAIN.C    Main module and some general-purpose routines.
  14.  
  15.     INIT.C        Various functions and command handlers.
  16.     PL1.C        (See comments in each source file)
  17.     PL2.C
  18.     PLAREA.C
  19.     PLBMP.C
  20.     PLDITHER.C
  21.     PLFILES.C
  22.     PLFRAME.C
  23.     PLGIF.C
  24.     PLHELP.C
  25.     PLMAP.C
  26.     PLMEM.C
  27.     PLPOINT.C
  28.     PLPRINT.C
  29.     PLPRINTF.C
  30.     PLSHOW.C
  31.     PLTGA.C
  32.  
  33.     PJTBLS        Various lookup tables.
  34.     HASH        (See comments in each file)
  35.     PT
  36.     SIERRA
  37.     STUCKI
  38.     YIQ
  39.  
  40.     PLINK.DBG    Linker response file for codeview.
  41.     PLINK.OPT    Linker response file for optimized linkage.
  42.  
  43. Documentation for the Piclab program itself is found in the Piclab
  44. executables distribution, usually found as PICLAB.ZIP.
  45.  
  46. All C modules must be compiled in large memory model (-AL) and linked
  47. with real mode libraries.  My compiler is set up so that neither real
  48. mode nor protected mode is the default, so I use -Lr to force real
  49. mode libraries.  If you do not compile programs for OS/2 protected
  50. mode, you probably do not need this (and you should remove the /NOD
  51. line from the PLINK files as well).
  52.  
  53. My apologies for not including a makefile, but I don't use make.  The
  54. tool I use is, unfortunately, not available to the public at this
  55. time, so I can't give you that file either.  Perhaps when Microsoft
  56. comes out with a real make utility, I will use that.
  57.  
  58. =====
  59.  
  60. Lee Daniel Crocker
  61. 1380 Jewett Ave
  62. Pittsburg, CA  94565
  63.  
  64. The best way to reach me is to type GO PICS on CompuServe and leave
  65. mail to user ID [73407,2030].  I read these messages two or three
  66. times a week.
  67.  
  68. I am also reachable on BIX as "lcrocker", and Usenet as "lee@siva",
  69. but I do not visit those accounts as often.
  70.